
.text-video p {
  color: #4f5e6a;
  font-size: 12px;
}
.text-video{
    padding: 20px 0px;
}
.text-video .whitecolor p {
  color: #fff;
}
.text-video .video-heading {
  color: #004470;
  font-weight: 700;
  font-size: 20px;
}

.text-video .video-container {
  position: relative;
  padding:10px 0px;
}
.text-video video {
  width: 100%;
}
.text-video .poster {
  position: absolute;
}
.text-video .primaryBtn {
  background-color: #b91843;

  font-size: 15px;
  font-weight: 700;
}

.text-video .playBtnOuter {
  width: 100px;
  height: 100px;
}

.text-video .playBtnOuter {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #de604952;
}
.text-video .playBtn {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.text-video .playBtn img {
    position: absolute;
    width: 25%;
    height: 25%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Style the custom play/pause button */
.text-video .play-pause-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 30px;
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  display: none; /* Hide button initially */
}

.text-video .play-pause-btn.show {
  display: block; /* Show button when needed */
}
.text-video #playPauseButton {
  opacity: 1;
}
.text-video .video-container:hover #playPauseButton {
  opacity: 1 !important;
}


.videoOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.videoOverlay iframe {
  width: 80%;
  height: auto;
  border: none;
}

.closeButton {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 10000;
}
.text-video .cta-buttons {
    margin-top: 25px;
}
.requestBtn{
    text-decoration: none;
    color: #fff;
    background-color: #004477;
    padding: 10px 15px;
    border: 2px solid #fff;
    font-family: roboto;
    font-weight: 700;
    font-size: 17px;
    border: 2px solid #fff;
    display: inline-block;
    
}
.requestBtn:hover{
    background-color: #b91843;
}
@media (min-width: 575px) {
    .text-video p {
        font-size: 13px;
    }
    .text-video .video-heading {
  font-size: 22px;
}
    
  .text-video video {
    height: 100%;
}

.text-video .playBtn {
  width: 40px;
  height: 40px;
}
.text-video .playBtnOuter {
  width: 65px;
  height: 65px;
}
.videoOverlay iframe {
  width: 80%;
  height: 80%;
  border: none;
}
}
@media (min-width: 992px) {
    .text-video{
    padding: 30px 0px;
}
    .text-video p {
        font-size: 18px;
    }
    .text-video .video-heading {
  font-size: 38px;
}
  .text-video video {
    height: 100%;
}

.text-video .playBtn {
  width: 88px;
  height: 88px;
}
.text-video .playBtnOuter {
  width: 150px;
  height: 150px;
}
}

